Sweet! <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />I got to playing and did things this way... (figures huh?) <img src="/forum/images/graemlins/wink.gif" alt="" /><br /><br />In your ubbt.inc.php file around line 377 find this:<br /><br />
<br /> // -------------------------------------------<br /> // Now require the registerednav.php template<br /> $html = new html;<br /> list($tbopen,$tbclose) = $this -> table_wrapper();<br />
<br /><br />and change it to this:<br /><br />
<br /> // -------------------------------------------<br /> // Now require the registerednav.php template<br />
<br /><br /><br />Around line 200 find this:<br /><br />
<br /> if (isset($user['loggedout'])) {<br /> $loggedout = $user['loggedout'];<br /> }<br /><br /><br />and change it to this:<br /><br />
<br /> if (isset($user['loggedout'])) {<br /> $loggedout = $user['loggedout'];<br /> }<br /> <br /> $html = new html;<br /> list($tbopen,$tbclose) = $this -> table_wrapper();<br /><br /><br /><br /><br />Change your header.php file located in your includes directory to something like this:<br /><br />
<br /><?<br />echo <<<UBBTPRINT<br />$tbopen<br /><tr><br /><td align="left" class="welcome"><br /><br />Your Logo Here. (or what ever)<br /></td><br /></tr><br />$tbclose<br />UBBTPRINT;<br />?><br />
<br /><br /><br /><br />Either way should work but this way will allow for forum specific headers to be used easily. <img src="/forum/images/graemlins/smile.gif" alt="" />